home *** CD-ROM | disk | FTP | other *** search
/ Interactive Media Design Review 1999 / Interactive Media Design Review 1999.iso / pc / allfiles / Centri / Centri.dir / 00257_Script_VisibilityChecker < prev    next >
Text File  |  1999-02-25  |  558b  |  24 lines

  1. property whichSprite
  2.  
  3. on exitFrame me
  4.   if the locv of sprite whichSprite > 10 then
  5.     set the visibility of sprite the spriteNum of me = the visibility of sprite whichSprite
  6.   else
  7.     set the visibility of sprite the spriteNum of me = FALSE
  8.   end if
  9.   
  10.   updateStage
  11. end
  12.  
  13.  
  14. on getPropertyDescriptionList
  15.   
  16.   set p_list = [ ¼
  17.              whichSprite : [ #comment:   " The visibility of whichSprite:", ¼
  18.                                #format:   #integer, ¼
  19.                               #default:    1 ] ]
  20.   
  21.   return p_list
  22.   
  23. end
  24.